.header-top{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 80px;
    border-bottom: 1px solid rgb(236, 221, 221);
    background-color: white;
    position: fixed;
    top:0;
    right: 0;
    left: 0;
    z-index: 100;

}
.left-section{
    display: flex;
    flex: 1;
    border-right: 1px solid rgb(236, 221, 221);
}
.menu-button {
  padding: 10px;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
  border-radius: 6px;
  margin: 20px 20px;
}
.menu-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.menu-text{
    display: flex;
    align-items: center;
}
.middle-section{
    display: flex;
    flex: 2;
    justify-content: center;
    padding-top: 22px;
    font-size: 25px;
    
}
.right-section{
    display: flex;
    flex: 1;
    border-left: 1px solid rgb(236, 221, 221);
    justify-content: center;
    padding-top: 22px;

}